home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / taropyon / guilib3 / inc / fdl / fdlmsg.h < prev   
C/C++ Source or Header  |  1993-11-30  |  496b  |  18 lines

  1. #ifndef    _FDLMSG_H
  2. #define    _FDLMSG_H
  3.  
  4. #ifdef    _FDLMSG_DEFINE
  5. #    define    EXT
  6. #    define    INI(p)    p
  7. #else
  8. #    define    EXT        extern
  9. #    define    INI(p)
  10. #endif
  11.  
  12. EXT    CONST char    FDLERRMSG_DRIVE_NOT_READY[]         INI(= "Drive not ready!!");
  13. EXT    CONST char    FDLERRMSG_CANT_CHANGE_DIRECTORY[]   INI(= "Can't change directory!!");
  14. EXT    CONST char    FDLERRMSG_FILE_NOT_FOUND[]          INI(= "File not found!!");
  15. EXT    CONST char    FDLERRMSG_MEMORY_ALLOCATION_ERROR[] INI(= "Memory allocation error!!");
  16.  
  17. #endif
  18.